Permutations and Combinations
Subject: Additional Mathematics
Topic: 8
Cambridge Code: 4037 / 0606
Fundamental Counting Principle
Fundamental Counting Principle - If one task can be done in m ways and another in n ways, both tasks can be done in m×n ways
Example
A restaurant menu has 3 appetizers, 5 main courses, 4 desserts.
Number of possible 3-course meals: 3×5×4=60
Factorial Notation
Factorial - Product of all positive integers from 1 to n
n!=n×(n−1)×(n−2)×⋯×2×1
Special Cases
0!=1
1!=1
2!=2
3!=6
4!=24
5!=120
Permutations
Permutation - Arrangement where order matters
Permutations of n objects
Number of ways to arrange n distinct objects:
P(n)=n!
Example: Arrange 5 books on a shelf:
5!=120 ways
Permutations of r objects from n
Number of arrangements of r objects selected from n objects:
P(n,r)=nPr=(n−r)!n!
Or: nPr=n(n−1)(n−2)⋯(n−r+1)
Example
Arrange 3 letters from A, B, C, D, E:
5P3=2!5!=2120=60
Or: 5×4×3=60
Permutations with Repetitions
Number of arrangements with r choices from n objects (repetition allowed):
nr
Example: 4-digit PIN from digits 0-9:
104=10,000
Combinations
Combination - Selection where order does NOT matter
Combinations of r objects from n
Number of ways to select r objects from n objects:
C(n,r)=nCr=(rn)=r!(n−r)!n!
Example
Select 3 letters from A, B, C, D, E:
5C3=3!2!5!=6×2120=10
Relationship Between Permutations and Combinations
nPr=nCr×r!
This makes sense: to arrangey, first select (nCr), then arrange the selection (r!)
Properties of Combinations
nC0=1
nCn=1
nCr=nCn−r
Example of Symmetry
6C2=6C4=15
Binomial Expansion
Binomial Theorem - Expansion of (a+b)n:
(a+b)n=∑r=0nnCr⋅an−r⋅br
Or explicitly:
(a+b)n=nC0an+nC1an−1b+nC2an−2b2+⋯+nCnbn
Example
Expand (x+2)3:
(x+2)3=3C0x3+3C1x2(2)+3C2x(2)2+3C3(2)3
=x3+3x2(2)+3x(4)+8
=x3+6x2+12x+8
Permutations with Identical Objects
When arranging n objects where some are identical:
Number of arrangements=n1!⋅n2!⋯nk!n!
where n1,n2,…,nk are frequencies of identical objects
Example
Arrange letters in MISSISSIPPI:
- Total letters: 11
- M: 1, I: 4, S: 4, P: 2
1!⋅4!⋅4!⋅2!11!=1×24×24×239,916,800=34,650
Circular Permutations
Circular Permutation - Arrangement in a circle (rotations considered identical)
For n distinct objects:
(n−1)!
Example
Arrange 4 people around a circular table:
(4−1)!=3!=6
Key Points to Remember
- Permutations: order matters - use nPr
- Combinations: order doesn't matter - use nCr
- Factorial: n!=n(n−1)(n−2)⋯1
- Permutations formula: nPr=(n−r)!n!
- Combinations formula: nCr=r!(n−r)!n!
- Binomial theorem uses combinations as coefficients
Worked Examples
Example 1: Simple Permutation
How many 3-letter "words" can be formed from A, B, C, D (no repetition)?
4P3=4×3×2=24
Example 2: Combination
A team of 5 is chosen from 12 people. How many ways?
12C5=5!7!12!=5×4×3×2×112×11×10×9×8=792
Example 3: Binomial Coefficient
Find the coefficient of x2 in (2x−3)4:
Using 4C2(2x)2(−3)2:
4C2×4x2×9=6×4×9×x2=216x2
Coefficient: 216
Practice Questions
-
Calculate:
- 6P3
- 8C3
- 7P4÷7C4
-
How many ways can 6 people be arranged in a line?
-
From 10 students, choose 4 for a committee. How many ways?
-
Expand (a−b)4
Revision Tips
- Permutation = arrangement (order matters)
- Combination = selection (order doesn't matter)
- Use factorial for all elements
- Use nPr and nCr formulas correctly
- Think about whether order matters in problem
- Binomial theorem: coefficients are combinations